home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / grph.dxr / 00003_draw the chart.ls < prev    next >
Encoding:
Text File  |  2000-01-28  |  322 b   |  15 lines

  1. on exitFrame me
  2.   global gGraph
  3.   pIsConsistant = 1
  4.   GraphResult = makeGraph(gGraph)
  5.   if GraphResult > 0 then
  6.     alert("The graph could not be created.  You should close some windows and try again.")
  7.     closeMe(gGraph)
  8.   else
  9.     updateStage()
  10.     showMe(gGraph)
  11.     Inscope(gGraph)
  12.     saveImage(gGraph)
  13.   end if
  14. end
  15.